home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / mc / mc.ext next >
Text File  |  2009-10-25  |  18KB  |  687 lines

  1. # Midnight Commander 3.0 extension file
  2. # Warning: Structure of this file has changed completely with version 3.0
  3. #
  4. # All lines starting with # or empty lines are thrown away.
  5. # Lines starting in the first column should have following format:
  6. #
  7. # keyword/descNL, i.e. everything after keyword/ until new line is desc
  8. #
  9. # keyword can be: 
  10. #
  11. #    shell (desc is, when starting with a dot, any extension (no wildcars), 
  12. #          i.e. matches all the files *desc . Example: .tar matches *.tar;
  13. #          if it doesn't start with a dot, it matches only a file of that name)
  14. #
  15. #    regex (desc is an extended regular expression)
  16. #          Please note that we are using the GNU regex library and thus
  17. #          \| matches the literal | and | has special meaning (or) and
  18. #          () have special meaning and \( \) stand for literal ( ).
  19. #
  20. #    type  (file matches this if `file %f` matches regular expression desc
  21. #          (the filename: part from `file %f` is removed))
  22. #
  23. #    directory (matches any directory matching regular expression desc)
  24. #
  25. #    include (matches an include directive)
  26. #
  27. #    default (matches any file no matter what desc is)
  28. #
  29. # Other lines should start with a space or tab and should be in the format:
  30. #
  31. # keyword=commandNL (with no spaces around =), where keyword should be: 
  32. #
  33. #    Open (if the user presses Enter or doubleclicks it), 
  34. #
  35. #    View (F3), Edit (F4)
  36. #
  37. #    Include is the keyword used to add any further entries from an include/
  38. #    section
  39. #
  40. # command is any one-line shell command, with the following substitutions:
  41. #
  42. # %% -> % character
  43. # %p -> name of the current file (without path, but pwd is its path)
  44. # %f -> name of the current file. Unlike %p, if file is located on a 
  45. #    non-local virtual filesystem, i.e. either tarfs, mcfs or ftpfs,
  46. #    then the file will be temporarily copied into a local directory
  47. #    and %f will be the full path to this local temporal file.
  48. #    If you don't want to get a local copy and want to get the
  49. #    virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then
  50. #    use %d/%p instead of %f.
  51. # %d -> name of the current directory (pwd, without trailing slash)
  52. # %s -> "selected files", i.e. space separated list of tagged files if any
  53. #       or name of the current file
  54. # %t -> list of tagged files
  55. # %u -> list of tagged files (they'll be untaged after the command)
  56. #
  57. # (If these 6 letters are in uppercase, they refer to the other panel.
  58. # But you shouldn't have to use it in this file.)
  59. #
  60. #
  61. # %cd -> the rest is a path mc should change into (cd won't work, since it's
  62. #    a child process).  %cd handles even vfs names.
  63. #
  64. # %view -> the command you type will be piped into mc's internal file viewer
  65. #    if you type only the %view and no command, viewer will load %f file
  66. #    instead (i.e. no piping, so it is different to %view cat %f)
  67. #    %view may be directly followed by {} with a list of any of
  68. #    ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for
  69. #    text using backspace for bold and underscore) and unform
  70. #    (no highlighting for nroff sequences) separated by commas.
  71. #
  72. # %var -> You use it like this: %var{VAR:default}.  This macro will expand
  73. #       to the value of the VAR variable in the environment if it's set
  74. #       otherwise the value in default will be used.  This is similar to
  75. #       the Bourne shell ${VAR-default} construct.
  76. #
  77. # Rules are applied from top to bottom, thus the order is important.
  78. # If some actions are missing, search continues as if this target didn't
  79. # match (i.e. if a file matches the first and second entry and View action
  80. # is missing in the first one, then on pressing F3 the View action from
  81. # the second entry will be used. default should catch all the actions.
  82. #
  83. # Any new entries you develop for you are always welcome if they are
  84. # useful on more than one system.  You can send your modifications
  85. # by e-mail to mc-devel@gnome.org
  86.  
  87.  
  88. ### Changes ###
  89. #
  90. # Reorganization: 2000-05-01 Michal Svec <rebel@penguin.cz>
  91.  
  92.  
  93. ### TODO ###
  94. #
  95. # Postscript    Open: ps2svga [gs -DEVICE=jpeg|zgv or something]
  96. # Images        asciiview
  97. # All X Apps    [Nothing/Warning] if no DISPLAY
  98. # Not found    [Default/Warning]
  99. # Empty Output    [Default/Warning]
  100. # Edit:        CopyOut+EDIT+CopyIn
  101. # Security    Check gzip/bzip EDIT (mktemp)
  102. # Maybe:    Open/XOpen/GOpen/KOpen/... for Console/X/GNOME/KDE/etc.
  103.  
  104.  
  105. ### Archives ###
  106.  
  107. # .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk
  108. regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$
  109.     Open=%cd %p#utar
  110.     View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf -
  111.  
  112. regex/\.tar\.bz$
  113.     # Open=%cd %p#utar
  114.     View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf -
  115.  
  116. regex/\.t(ar\.bz2|bz|b2)$
  117.     Open=%cd %p#utar
  118.     View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf -
  119.  
  120. # .tar.lzma, .tlz
  121. regex/\.t(ar\.lzma|lz)$
  122.     Open=%cd %p#utar
  123.     View=%view{ascii} lzma -dc %f 2>/dev/null | tar tvvf -
  124.  
  125. # .tar.F - used in QNX
  126. regex/\.tar\.F$
  127.     # Open=%cd %p#utar
  128.     View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf -
  129.  
  130. # .qpr/.qpk - QNX Neutrino package installer files 
  131. regex/\.(qp[rk])$
  132.     Open=%cd %p#utar
  133.     View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf -
  134.  
  135. # tar
  136. regex/\.(tar|TAR)$
  137.     Open=%cd %p#utar
  138.     View=%view{ascii} tar tvvf - < %f
  139.  
  140. # lha
  141. type/^LHa\ .*archive
  142.     Open=%cd %p#ulha
  143.     View=%view{ascii} lha l %f
  144.  
  145. # arj
  146. regex/\.a(rj|[0-9][0-9])$
  147.     Open=%cd %p#uarj
  148.     View=%view{ascii} arj l %f
  149.  
  150. # ha
  151. regex/\.([Hh][Aa])$
  152.     Open=%cd %p#uha
  153.     View=%view{ascii} ha lf %f
  154.  
  155. # rar
  156. regex/\.[rR]([aA][rR]|[0-9][0-9])$
  157.     Open=%cd %p#urar
  158.     View=%view{ascii} rar v -c- %f
  159.  
  160. # ALZip
  161. regex/\.(alz|ALZ)$
  162.     Open=%cd %p#ualz
  163.     View=%view{ascii} unalz -l %f
  164.  
  165. # cpio
  166. shell/.cpio.Z
  167.     Open=%cd %p#ucpio
  168.     View=%view{ascii} gzip -dc %f | cpio -itv 2>/dev/null
  169.  
  170. shell/.cpio.gz
  171.     Open=%cd %p#ucpio
  172.     View=%view{ascii} gzip -dc %f | cpio -itv 2>/dev/null
  173.  
  174. shell/.cpio
  175.     Open=%cd %p#ucpio
  176.     View=%view{ascii} cpio -itv < %f 2>/dev/null
  177.  
  178. # ls-lR
  179. regex/(^|\.)ls-?lR(\.gz|Z|bz2)$
  180.     Open=%cd %p#lslR
  181.  
  182. # patch
  183. regex/\.(diff|patch)(\.bz2)$
  184.     Open=%cd %p#patchfs
  185.     View=%view{ascii} bzip2 -dc %f 2>/dev/null
  186.  
  187. regex/\.(diff|patch)(\.(gz|Z))$
  188.     Open=%cd %p#patchfs
  189.     View=%view{ascii} gzip -dc %f 2>/dev/null
  190.  
  191. regex/\.(diff|patch)$
  192.     Open=%cd %p#patchfs
  193.     View=%view{ascii} /bin/cat %f 2>/dev/null
  194.  
  195. # ar library
  196. regex/\.s?a$
  197.     Open=%cd %p#uar
  198.     #Open=%view{ascii} ar tv %f
  199.     View=%view{ascii} file %f && nm %f
  200.  
  201. # trpm
  202. regex/\.trpm$
  203.     Open=%cd %p#trpm
  204.     View=%view{ascii} rpm -qivl --scripts `basename %p .trpm`
  205.  
  206. # RPM packages (SuSE uses *.spm for source packages)
  207. regex/\.(src\.rpm|spm)$
  208.     Open=%cd %p#srpm
  209.     View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f
  210.  
  211. regex/\.rpm$
  212.     Open=%cd %p#rpm
  213.     View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f
  214.  
  215. # deb
  216. regex/\.u?deb$
  217.     Open=%cd %p#deb
  218.     View=%view{ascii} dpkg-deb -I %f && echo && dpkg-deb -c %f
  219.  
  220. # dpkg
  221. shell/.debd
  222.         Open=%cd %p#debd
  223.         View=%view{ascii} dpkg -s `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`
  224. # apt
  225. shell/.deba
  226.         Open=%cd %p#deba
  227.         View=%view{ascii} apt-cache show `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`        
  228.  
  229. # dpkg
  230. shell/.debd
  231.         Open=%cd %p#debd
  232.         View=%view{ascii} dpkg -s `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`
  233. # apt
  234. shell/.deba
  235.         Open=%cd %p#deba
  236.         View=%view{ascii} apt-cache show `echo %p | sed 's/\([0-9a-z.-]*\).*/\1/'`        
  237.  
  238. # ISO9660
  239. regex/\.iso$
  240.     Open=%cd %p#iso9660
  241.     View=%view{ascii} isoinfo -l -i %f
  242.  
  243. # 7zip archives (they are not man pages)
  244. regex/\.(7z|7Z)$
  245.     Open=%cd %p#u7z
  246.     View=%view{ascii} 7za l %f 2>/dev/null
  247.  
  248. # Mailboxes
  249. type/^ASCII\ mail\ text
  250.     Open=%cd %p#mailfs
  251.  
  252.  
  253. ### Sources ###
  254.  
  255. # C
  256. shell/.c
  257.      Open=sensible-editor %f
  258.  
  259. # Fortran
  260. shell/.f
  261.      Open=sensible-editor %f
  262.     
  263. # Header
  264. regex/\.(h|hpp)$
  265.      Open=sensible-editor %f
  266.  
  267. # Object
  268. type/^ELF
  269.      #Open=sensible-pager %f
  270.     View=%view{ascii} file %f && nm %f
  271.  
  272. # Asm
  273. shell/.s
  274.      Open=sensible-editor %f
  275.  
  276. # C++
  277. regex/\.(C|cc|cpp)$
  278.      Open=sensible-editor %f
  279.  
  280.  
  281. ### Documentation ###
  282.  
  283. # Texinfo
  284. regex/\.(te?xi|texinfo)$
  285.  
  286. # GNU Info page
  287. type/^Info\ text
  288.     Open=info -f %f
  289.  
  290. shell/.info
  291.     Open=info -f %f
  292.  
  293. # Manual page
  294. # Exception - .so libraries are not manual pages
  295. regex/\.(so|so\.[0-9\.]*)$
  296.     View=%view{ascii} file %f && nm %f
  297.  
  298. regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$
  299.     Open=case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac | sensible-pager
  300.     View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac
  301.  
  302. # Perl pod page
  303. shell/.pod
  304.     Open=pod2man %f | nroff -c -Tlatin1 -mandoc | %var{PAGER:more}
  305.     View=%view{ascii,nroff} pod2man %f | nroff -c -Tlatin1 -mandoc
  306.  
  307. # Troff with me macros.
  308. # Exception - "read.me" is not a nroff file.
  309. shell/read.me
  310.     Open=
  311.     View=
  312.  
  313. shell/.me
  314.     Open=nroff -c -Tlatin1 -me %f | sensible-pager
  315.     View=%view{ascii,nroff} nroff -c -Tlatin1 -me %f
  316.  
  317. # Troff with ms macros.
  318. shell/.ms
  319.     Open=nroff -c -Tlatin1 -ms %f | sensible-pager
  320.     View=%view{ascii,nroff} nroff -c -Tlatin1 -ms %f
  321.  
  322. # Manual page - compressed
  323. regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$
  324.     Open=case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | sensible-pager
  325.     View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
  326.  
  327. regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$
  328.     Open=case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | sensible-pager
  329.     View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
  330.  
  331. regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$
  332.     Open=case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | sensible-pager
  333.     View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
  334.  
  335. regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$
  336.     Open=case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more}
  337.     View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac
  338.  
  339.  
  340. ### Images ###
  341.  
  342. type/^GIF
  343.     Include=image
  344.  
  345. type/^JPEG
  346.     View=%view{ascii} identify %f; test -x /usr/bin/exif && echo && exif %f
  347.     Include=image
  348.  
  349. type/^PC\ bitmap
  350.     Include=image
  351.  
  352. type/^PNG
  353.     Include=image
  354.  
  355. type/^TIFF
  356.     Include=image
  357.  
  358. type/^PBM
  359.     Include=image
  360.  
  361. type/^PGM
  362.     Include=image
  363.  
  364. type/^PPM
  365.     Include=image
  366.  
  367. type/^Netpbm
  368.     Include=image
  369.  
  370. shell/.xcf
  371.     Open=(gimp-remote %f &)
  372.  
  373. shell/.xbm
  374.   Include=image
  375.  
  376. shell/.xpm
  377.     Include=image
  378.     View=sxpm %f
  379.  
  380. include/image
  381.     Open=see %f &
  382.     #Open=if [ "$DISPLAY" = "" ]; then zgv %f; else (gqview %f &); fi
  383.     View=%view{ascii} identify %f
  384.     #View=%view{ascii} asciiview %f
  385.  
  386.  
  387. ### Sound files ###
  388.  
  389. regex/\.([wW][aA][vV]|[sS][nN][dD]|[vV][oO][cC]|[aA][uU]|[sS][mM][pP]|[aA][iI][fF][fF]|[sS][nN][dD])$
  390.      Open=run-mailcap %f 2>&1 &
  391.      #Open=if [ "$DISPLAY" = "" ]; then play %f; else (xmms -e %f 1>/dev/null 2>&1 &); fi
  392.  
  393. regex/\.([mM][oO][dD]|[sS]3[mM]|[xX][mM]|[iI][tT]|[mM][tT][mM]|669|[sS][tT][mM]|[uU][lL][tT]|[fF][aA][rR])$
  394.      Open=run-mailcap  %f 2>&1 &
  395.         #Open=mikmod %f
  396.        #Open=tracker %f
  397.  
  398. regex/\.([wW][aA][wW]22)$
  399.        Open=vplay -s 22 %f
  400.  
  401. regex/\.([mM][pP]3)$
  402.      Open=run-mailcap %f 2>&1 &
  403.      #Open=if [ "$DISPLAY" = "" ]; then mpg123 %f; else (xmms %f &); fi
  404.      View=%view{ascii} mpg123 -vtn1 %f 2>&1 | sed -n '/Title:/,/Comment:/p;/^MPEG/,/^Audio/p'
  405.  
  406. regex/\.([oO][gG][gG])$
  407.      Open=run-mailcap %f  2>&1 &
  408.      #Open=if [ "$DISPLAY" = "" ]; then ogg123 %f; else (xmms %f &); fi
  409.     View=%view{ascii} ogginfo %s
  410.  
  411. regex/\.([mM][iI][dD][iI]?|[rR][mM][iI][dD]?)$
  412.      Open=run-mailcap %f 2>&1 &
  413.      #Open=timidity %f
  414.  
  415. regex/\.([wW][mM][aA])$
  416.     Open=mplayer -vo null %f
  417.     View=%view{ascii} mplayer -quiet -slave -frames 0 -vo null -ao null -identify %f 2>/dev/null | tail +13 || file %f
  418.  
  419.  
  420. ### Play lists ###
  421.  
  422. regex/\.([mM]3[uU]|[pP][lL][sS])$
  423.     Open=if [ -z "$DISPLAY" ]; then mplayer -vo null -playlist %f; else (xmms -p %f >/dev/null 2>&1 &); fi
  424.  
  425.  
  426. ### Video ###
  427.  
  428. regex/\.([aA][vV][iI])$
  429.     Include=video
  430.  
  431. regex/\.([aA][sS][fFxX])$
  432.     Include=video
  433.  
  434. regex/\.([dD][iI][vV][xX])$
  435.     Include=video
  436.  
  437. regex/\.([mM][oO][vV]|[qQ][tT])$
  438.     Include=video
  439.  
  440. regex/\.([mM][pP]4|[mM][pP][eE]?[gG])$
  441.     Include=video
  442.  
  443. regex/\.([vV][oO][bB])$
  444.     Include=video
  445.  
  446. regex/\.([wW][mM][vV])$
  447.     Include=video
  448.  
  449. regex/\.([fF][lL][iIcCvV])$
  450.     Include=video
  451.  
  452. regex/\.([oO][gG][mM])$
  453.     Include=video
  454.  
  455. regex/\.([rR][aA]?[mM])$
  456.     Open=run-mailcap  %f 2>&1
  457.     #Open=(realplay %f >/dev/null 2>&1 &)
  458.  
  459. include/video
  460.     Open=see %f &
  461.     #Open=(mplayer %f >/dev/null 2>&1 &)
  462.     #Open=(gtv %f >/dev/null 2>&1 &)
  463.     #Open=(xanim %f >/dev/null 2>&1 &)
  464.  
  465.  
  466. ### Documents ###
  467.  
  468. # Postscript
  469. type/^PostScript
  470.     Open=run-mailcap  %f 2>&1 &
  471.     #Open=(gv %f &)
  472.     View=%view{ascii} ps2ascii %f
  473.  
  474. # PDF
  475. type/^PDF
  476.     Open=run-mailcap %f 2>&1 &
  477.     #Open=(xpdf %f &)
  478.     #Open=(acroread %f &)
  479.     #Open=(ghostview %f &)
  480.     View=%view{ascii} pdftotext %f -
  481.  
  482. # The following code very ugly and should not be taken as example.
  483. # It should be cleaned up when the new format of mc.ext is developed.
  484.  
  485. # html
  486. regex/\.([hH][tT][mM][lL]?)$
  487.   Open=run-mailcap %f 2>&1 &  
  488.     #Open=(if test -n "" && test -n "$DISPLAY"; then ( file://%d/%p &) 1>&2; else links %f || lynx -force_html %f || ${PAGER:-more} %f; fi) 2>/dev/null
  489.     View=%view{ascii} links -dump %f 2>/dev/null || w3m -dump %f 2>/dev/null || lynx -dump -force_html %f
  490.  
  491. # StarOffice 5.2
  492. shell/.sdw
  493.     Open=(ooffice %f &)
  494.  
  495. # StarOffice 6 and OpenOffice.org formats
  496. regex/\.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$
  497.     Open=(ooffice %f &)
  498.     View=%view{ascii} odt2txt %f
  499.  
  500. # AbiWord
  501. shell/.abw
  502.     Open=(abiword %f &)
  503.  
  504. # Microsoft Word Document
  505. regex/\.([Dd][oO][cCtT]|[Ww][rR][iI])$
  506.     Open=run-mailcap %f 2>&1 &
  507.     #Open=(abiword %f >/dev/null 2>&1 &)
  508.     View=%view{ascii} antiword -t %f || catdoc -w %f || word2x -f text %f - || strings %f
  509. type/^Microsoft\ Word
  510.      Open=run-mailcap %f 2>&1 &
  511.     #Open=(abiword %f >/dev/null 2>&1 &)
  512.     View=%view{ascii} antiword -t %f || catdoc -w %f || word2x -f text %f - || strings %f
  513.  
  514. # RTF document
  515. regex/\.([rR][tT][fF])$
  516.     Open=run-mailcap %f 2>&1 &
  517.     #Open=(abiword %f >/dev/null 2>&1 &)
  518.  
  519. # Microsoft Excel Worksheet
  520. regex/\.([xX][lL][sSwW])$
  521.     Open=run-mailcap %f 2>&1 &
  522.     #Open=(gnumeric %f >/dev/null 2>&1 &)
  523.     View=%view{ascii} xls2csv %f || strings %f
  524. type/^Microsoft\ Excel
  525.     Open=run-mailcap %f 2>&1 &
  526.     #Open=(gnumeric %f >/dev/null 2>&1 &)
  527.     View=%view{ascii} xls2csv %f || strings %f
  528.  
  529. # Use OpenOffice.org to open any MS Office documents
  530. type/^Microsoft\ Office\ Document
  531.     Open=(ooffice %f &)
  532.  
  533. # Framemaker
  534. type/^FrameMaker
  535.     Open=fmclient -f %f
  536.  
  537. # DVI
  538. regex/\.([dD][vV][iI])$
  539.     Open=run-mailcap %f 2>&1 &
  540.     #Open=if [ x$DISPLAY = x ]; then dvisvga %f; else (xdvi %f &); fi
  541.     View=%view{ascii} dvi2tty %f
  542.  
  543. # TeX
  544. regex/\.([Tt][Ee][Xx])$
  545.     Open=sensible-editor %f
  546.     #Open=%var{EDITOR:vi} %f
  547.  
  548.  
  549. ### Miscellaneous ###
  550.  
  551. # Makefile
  552. regex/[Mm]akefile$
  553.     Open=make -f %f %{Enter parameters}
  554.  
  555. # Imakefile
  556. shell/Imakefile
  557.     Open=xmkmf -a
  558.  
  559. # Makefile.PL (MakeMaker)
  560. regex/^Makefile.(PL|pl)$
  561.     Open=%var{PERL:perl} %f
  562.  
  563. # dbf
  564. regex/\.([dD][bB][fF])$
  565.        Open=%view{ascii} dbview %f
  566.        View=%view{ascii} dbview -b %f
  567.  
  568. # REXX script
  569. regex/\.(rexx?|cmd)$
  570.        Open=rexx %f %{Enter parameters};echo "Press ENTER";read y
  571.  
  572. ### Debian additions ###
  573.  
  574. # view gzipped HTML
  575. regex/\.([hH][tT][mM][lL]?)\.([gG][zZ])$
  576.         Open=zcat %f|run-mailcap - &
  577.         View=zcat %f|%view{ascii} w3m -dump -T text/html 2>&1 ||zcat %f|%view{ascii} links -dump 2>&1 ||zcat %f|lynx -dump -force_html 2>&1
  578.  
  579. # view bzipped HTML
  580. regex/\.([hH][tT][mM][lL]?)\.([bB][zZ])2$
  581.         Open=bzcat %f|run-mailcap - &
  582.         View=bzcat %f|%view{ascii} w3m -dump -T text/html 2>&1||zcat %f|%view{ascii} links -dump 2>&1||zcat %f|lynx -dump -force_html 2>&1
  583.  
  584. # view gzipped (E)PS
  585. regex/\.(e|)ps\.gz$
  586.         Open=gv %f 2>&1 &
  587.         Icon=postscript.xpm
  588.         View with GhostView=gv %f 2>&1 &
  589.  
  590. # compressed PDF
  591. shell/.pdf.gz
  592.         Open=zxpdf %f 2>&1 &
  593.         View=zxpdf %f 2>&1 &
  594.  
  595. # compressed postscript
  596. shell/.ps.gz
  597.         Open=gv %f 2>&1 &
  598.         View=gv %f 2>&1 &
  599.  
  600. ### Debian additions ###
  601.  
  602. # view gzipped HTML
  603. regex/\.([hH][tT][mM][lL]?)\.([gG][zZ])$
  604.         Open=zcat %f|run-mailcap - &
  605.         View=zcat %f|%view{ascii} w3m -dump -T text/html 2>&1 ||zcat %f|%view{ascii} links -dump 2>&1 ||zcat %f|lynx -dump -force_html 2>&1
  606.  
  607. # view bzipped HTML
  608. regex/\.([hH][tT][mM][lL]?)\.([bB][zZ])2$
  609.         Open=bzcat %f|run-mailcap - &
  610.         View=bzcat %f|%view{ascii} w3m -dump -T text/html 2>&1||zcat %f|%view{ascii} links -dump 2>&1||zcat %f|lynx -dump -force_html 2>&1
  611.  
  612. # view gzipped (E)PS
  613. regex/\.(e|)ps\.gz$
  614.         Open=gv %f 2>&1 &
  615.         Icon=postscript.xpm
  616.         View with GhostView=gv %f 2>&1 &
  617.  
  618. # compressed PDF
  619. shell/.pdf.gz
  620.         Open=zxpdf %f 2>&1 &
  621.         View=zxpdf %f 2>&1 &
  622.  
  623. # compressed postscript
  624. shell/.ps.gz
  625.         Open=gv %f 2>&1 &
  626.         View=gv %f 2>&1 &
  627.  
  628. # Gettext Catalogs
  629. shell/.mo
  630.     View=%view{ascii} msgunfmt %f || cat %f
  631.  
  632. ### Plain compressed files ###
  633.  
  634. # zip
  635. type/^([Zz][Ii][Pp])\ archive
  636.     Open=%cd %p#uzip
  637.     View=%view{ascii} unzip -v %f
  638.  
  639. # zoo
  640. regex/\.([Zz][Oo][Oo])$
  641.     Open=%cd %p#uzoo
  642.     View=%view{ascii} zoo l %f
  643.     
  644. # gzip
  645. type/^gzip
  646.     Open=gzip -dc %f | sensible-pager
  647.     View=%view{ascii} gzip -dc %f 2>/dev/null
  648.  
  649. regex/\.(gz|Z)?$
  650.     View=%view{ascii} gzip -dc %f 2>/dev/null
  651.  
  652. # bzip2
  653. type/^bzip2
  654.      Open=bzip2 -dc %f | sensible-pager
  655.     View=%view{ascii} bzip2 -dc %f 2>/dev/null
  656.  
  657. regex/\.bz2?$
  658.     View=%view{ascii} bzip2 -dc %f 2>/dev/null
  659.  
  660. # bzip
  661. type/^bzip
  662.      Open=bzip -dc %f | sensible-pager
  663.     View=%view{ascii} bzip -dc %f 2>/dev/null
  664.  
  665. # compress
  666. type/^compress
  667.     Open=gzip -dc %f | sensible-pager
  668.     View=%view{ascii} gzip -dc %f 2>/dev/null
  669.  
  670. # lzma
  671. regex/\.lzma$
  672.     Open=lzma -dc %f | %var{PAGER:more}
  673.     View=%view{ascii} lzma -dc %f 2>/dev/null
  674.  
  675.  
  676. ### Default ###
  677.  
  678. # Default target for anything not described above
  679. default/*
  680.     Open=
  681.     View=
  682.  
  683.  
  684. ### EOF ###
  685.